package com.signavio.warehouse.model.syntaxchecker.util; import org.w3c.dom.Document; import org.w3c.dom.Node; /** * @author gero.decker */ public class StencilSetUtil { public String getStencilSet(Document doc) { Node node = doc.getDocumentElement(); if (node == null || !node.getNodeName().equals("rdf:RDF")) return null; node = node.getFirstChild(); while (node != null) { Node typeChild = getChild(node, "rdf:type"); if (typeChild != null) { String resource = getAttributeValue(typeChild, "rdf:resource"); if (resource != null && resource.equals("http://oryx-editor.org/canvas")) break; } node = node.getNextSibling(); } if (node != null) { String type = getAttributeValue(getChild(node, "stencilset"), "rdf:resource"); if (type != null) { type = type.substring(type.lastIndexOf('/')+1); int versionIndex = type.indexOf("?version="); if(versionIndex > 0) { type = type.substring(0, versionIndex); } return type; } } return null; } // protected String getContent(Node node) { // if (node != null && node.hasChildNodes()) // return node.getFirstChild().getNodeValue(); // return null; // } private String getAttributeValue(Node node, String attribute) { if (node.getAttributes() != null){ // text nodes have no attributes Node item = node.getAttributes().getNamedItem(attribute); if (item != null) return item.getNodeValue(); } return null; } private Node getChild(Node n, String name) { if (n == null) return null; for (Node node=n.getFirstChild(); node != null; node=node.getNextSibling()) if (node.getNodeName().indexOf(name) >= 0) return node; return null; } }